You can provide a
lacp-timeout
value on each XCO port channel configured on the SLX
port channel.
If you do not provide a lacp-timeout
value, the
default value of the port channel lacp-timeout
will be
long
.
Note
When you configure an ethernet port as a port channel member with thelacp-timeout
value, set
the negotiation to active or
passive.efa tenant po create --name <po-name> --tenant <tenant-name> --description <podescription> --speed <100Mbps|1Gbps|10Gbps|25Gbps|40Gbps|100Gbps> --negotiation <active|passive|static> --port <list-of-po-members> --min-link-count <min-link-count> --number <po-number> --lacp-timeout <short|long>
efa tenant po update --name <po-name> --tenant <tenant-name> --operation <port-add|port-delete|lacp-timeout|description|min-linkcount> --port <list-of-po-members> --lacp-timeout string <short|long> --minlink-count <min-link-count> --description <po-description>
efa tenant po create --name ten1po1 --tenant ten1 --port 10.20.246.5[0/1],10.20.246.6[0/1] --speed 10Gbps --negotiation active --lacp-timeout long PortChannel created successfully. --- Time Elapsed: 10.513257386s --- (efa:root)root@node-2:~# efa tenant po show --name ten1po1 --tenant ten1 --detail ================================================================================= Name : ten1po1 Tenant : ten1 ID : 7 Description : EFA Port-channel ten1po1 Speed : 10Gbps MTU : Negotiation : active Min Link Count : 1 Lacp Timeout : short Ports : 10.20.246.6[0/1] : 10.20.246.5[0/1] State : po-created Dev State : provisioned App State : cfg-in-sync =================================================================================== --- Time Elapsed: 57.382422ms --- efa tenant po update --name ten1po1 --tenant ten1 --operation lacp-timeout --lacp-timeout short PortChannel: ten1po1 updated successfully. --- Time Elapsed: 1.472657838s --- efa tenant po show --name ten1po1 --tenant ten1 --detail ==================================================================================== Name : ten1po1 Tenant : ten1 ID : 1 Description : EFA Port-channel ten1po1 Speed : 10Gbps MTU : Negotiation : active Min Link Count : 1 Lacp Timeout : short Ports : 10.20.246.6[0/1] : 10.20.246.5[0/1] State : po-created Dev State : provisioned App State : cfg-in-sync ===================================================================================== --- Time Elapsed: 54.009354ms ---
The following is an example configuration of LACP timeout on SLX device:
After create
ten1po1SLX# sh run int po interface Port-channel 1 description EFA Port-channel ten1po1 no shutdown ! SLX# sh run int eth 0/1 interface Ethernet 0/1 description Port-channel ten1po1 Member interface channel-group 1 mode active type standard lacp timeout long no shutdown ! |
After update lacp-timeout to
shortSLX# sh run int po interface Port-channel 1 description EFA Port-channel ten1po1 no shutdown ! SLX# sh run int eth 0/1 interface Ethernet 0/1 description Port-channel ten1po1 Member interface channel-group 1 mode active type standard lacp timeout short no shutdown ! |